home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / WINDOWS / BDATA20.ARJ / INSTALL.BAT < prev    next >
DOS Batch File  |  1992-08-17  |  2KB  |  81 lines

  1. echo off
  2. cls
  3. echo                  BirdData Installation
  4. echo.
  5. if "%1" == "" goto NoPath
  6. echo Ready to install. This product requires approximately 2.5 MB. 
  7. echo Press CTRL-Break to abort or
  8. pause
  9. if "%2"=="" goto NoDel
  10. if "%2"=="/d" goto DoDel
  11. if "%2"=="/D" goto DoDel
  12. echo Invalid switch used "%2"
  13. goto End
  14. :DoDel
  15. echo.
  16. echo The install program is about to delete the contents of the
  17. echo %1 directory and all directories beneath it.
  18. echo press CTRL-Break to stop process, or
  19. pause
  20. echo.
  21. echo Deleting directory....
  22. killdir %1
  23. :NoDel
  24. echo.
  25. echo Creating default directory
  26. md %1
  27. echo Creating Subdirectory
  28. echo     ICONS.....
  29. md %1\ICONS
  30. echo.
  31. copy install.txt %1
  32. copy win30inf.txt %1
  33. copy bdatareg.key %1
  34. echo Unpacking files:
  35. echo      Default directory...
  36. program %1
  37. if errorlevel 1 goto error
  38. echo      Icon directory...
  39. icons %1\ICONS
  40. if errorlevel 1 goto error
  41. echo.
  42. echo Installation of BirdData is now complete.
  43. echo.
  44. echo Don't forget to either add %1 to your PATH, or else copy
  45. echo the .DLL and .VBX files to a directory that is in your path.
  46. echo A good directory to place them in is your Windows directory.
  47. echo Refer to the install.txt instructions.
  48. echo.
  49. goto end
  50. :error
  51. echo                            **** E R R O R ****
  52. echo.
  53. echo     An error occurred during the installation. Most likely, your
  54. echo     hard disk is full. Please correct the problem and run the INSTALL
  55. echo     batch file again.
  56. echo.
  57. goto end
  58. :NoPath
  59. echo.
  60. echo     You must specify a directory to install to.
  61. echo.
  62. echo     You cannot run this program from the Windows Run command.  You must
  63. echo     exit to a DOS prompt, or else open a DOS window.
  64. echo.
  65. echo     Syntax:   INSTALL Drive:\Path [/d]
  66. echo     Example:  INSTALL C:\BIRDDATA
  67. echo.
  68. echo     Where 'Drive:\Path' is the drive letter and the path of the hard disk
  69. echo     drive and directory where you wish to install this product.
  70. echo.
  71. echo     Using the optional /d switch causes the contents of the specified
  72. echo     directory, and all directories beneath it, to be removed before
  73. echo     installation. This is useful when you are re-installing the
  74. echo     product and you don't want to be prompted each time the installation
  75. echo     detects an existing file.  YOU WILL LOSE ANY DATA IN THE DIRECTORY
  76. ECHO     CHOSEN IF YOU USE THE /D SWITCH!
  77. echo.
  78. echo     For example:     INSTALL C:\BIRDDATA /d
  79. pause
  80. :end
  81.